home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / basic / qbfaqr01.zip / LIB2QLB.BAT < prev    next >
DOS Batch File  |  1992-08-10  |  595b  |  23 lines

  1. @echo off
  2. GOTO CONTD:
  3.  
  4. There has been lots of confusion about LIBs and QLBs in this
  5. conference from some people, lately.  It might be just a little bit
  6. helpful to add this small batch file into a directory in the path:
  7.  
  8. ; LIB2QLB.BAT  Syntax: LIB2QLB libname
  9.  
  10. You may want to customize LINK's paramters, but this will work most
  11. of the time.  It just makes it that much easier for quick
  12. conversion.
  13.  
  14.                                    Nathan
  15.  
  16. :CONTD
  17. @echo off
  18. IF $%1$==$$ goto NOPARMS
  19. LINK %1.LIB/Q/SE:512,,NUL,\QB\BQLB45
  20. goto end
  21. :NOPARMS
  22. echo Syntax = LIB2OBJ libname
  23. :end